# CentOS安装ElasticSearch
# 1.下载ElasticSearch
# 1.1 官网下载地址
https://www.elastic.co/products/elasticsearch
# 1.2 直接远程下载
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.4.3.tar.gz
1
# 2.把elasticSearch拷贝到指定目录
# 2.1.创建一个普通用户,es默认不能使用root用户进行启动,这里创建一个用户"es"
adduser es
1
# 2.2 指定用户密码
passwd es
1
# 2.3创建创建es组
groupadd esgroup
1
# 2.4在es压缩文件根目录设置 修改文件所属用户
chown -R es elasticsearch-6.4.0
1
# 2.5 修改文件所属组
chgrp -R esgroup elasticsearch-6.4.3
1
# 3.解压安装es
# 3.1 切换用户到es
su es
1
# 3.2 解压文件
tar -xzvf elasticsearch-6.4.3.tar.gz
1
# 3.3 进入 elasticsearch-6.4.3,并启动elasticsearch,输出日志中显示started表示启动成功
./elasticsearch
1
# 3.4 验证是否启动成功输入 curl localhost:9200
# 3.5 现在只能访问ElasticSearch的本地服务,外网访问需要修改配置文件config/elasticsearch.yml
# 3.6修改完后启动有可能出现下面错误
打开配置文件elasticsearch.yml 修改为0.0.0.0
network.host: 192.168.0.1 修改为本机IP 0.0.0.0
1
# 3.7 修改完后启动有可能还会出现下面三种错误
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max number of threads [3802] for user [esyonghu] is too low, increase to at least [4096]
[3]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
1
2
3
4
2
3
4
解决办法 :切换到root用户
# a 第一个错误需要将当前用户的软硬调用限制调大
切换到root用户,然后执行vim /etc/security/limits.conf 在文件末尾加上以下代码 备注 es为用户名 请根据实际情况修改
es soft nofile 65536
es hard nofile 131072
es soft nproc 2048
es hard nproc 4096
1
2
3
4
2
3
4
# b.第二个错误需要修改 vim /etc/security/limits.d/20-nproc.conf 文件
在文件中添加
esyonghu soft nproc 4096
1
# c 第三个错误需要修改/etc/sysctl.conf
使用命令 vim /etc/sysctl.conf来编辑该文件,在文件中加入如下内容
加上vm.max_map_count=262144
1
需要使改文件生效,执行sysctl -p
sysctl -p
1
# 4.启动es
再次切换到esyonghu去elasticsearch文件目录启动elasticsearch 在浏览器输入自己的ip地址 出现以下界面则启动成功